home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / CLASSSRC.PAK / CASTABLE.CPP < prev    next >
C/C++ Source or Header  |  1997-05-06  |  533b  |  24 lines

  1. //----------------------------------------------------------------------------
  2. // Borland Class Library
  3. // Copyright (c) 1993, 1997 by Borland International, All Rights Reserved
  4. //
  5. //$Revision:   5.8  $
  6. //
  7. //  RTTI replacement class
  8. //----------------------------------------------------------------------------
  9. #include <classlib/pch.h>
  10. #include <classlib/objstrm.h>
  11.  
  12. TStreamableBase::~TStreamableBase()
  13. {
  14. }
  15.  
  16. #if defined(BI_NO_RTTI)
  17.  
  18. void *TStreamableBase::FindBase( Type_id ) const
  19. {
  20.     return 0;
  21. }
  22.  
  23. #endif
  24.